home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc1 / iv26_w30.zip / README < prev   
Text File  |  1980-01-26  |  2KB  |  69 lines

  1. /*
  2.  *      InterViews 2.6 for MS Windows - 'Win IV'
  3.  *
  4.  *      Ewald Salcher 
  5.  *      IIG - Instituts for Information-Processing Graz 
  6.  *      13.03.1992   
  7.  */
  8.  
  9.  
  10.  
  11. InterViews, Version 2.6. is now available for MS Windows. Part of the 
  12. Win IV Installation Disks are several demonstration programs, which the 
  13. IV user already knows. They should prove the usability of Win IV. 
  14.  
  15.  
  16. 1. Win IV Directories and Files  
  17.  
  18.      '\sources'              ... Sources of the InterViews Classes 
  19.      
  20.      '\Intervie'             ... InterViews Header 
  21.      '\Intervie\X11'         ... InterViews Header with Windows-specific
  22.                  Declarations
  23.      '\Intervie\graphic'     ... InterViews Graphic Header
  24.      '\Intervie\bitmaps'     ... InterViews Bitmap Files (X format)
  25.      
  26.      '\examples'             ... Demonstrations Programs
  27.      '\examples\ifc'         ... FileChooser
  28.      '\examples\sted'        ... Simple Text Editor
  29.      '\examples\logo'        ... brings up the InterViews Logo
  30.      '\examples\alert'       ... brings up a message box
  31.      '\examples\ifb'         ... Font Browser
  32.      '\examples\graphics'    ... Demonstration of Graphic Classes
  33.      '\examples\squares'     ... Demonstration of Views, subjects
  34.      '\examples\idraw'       ... Drawing Editor
  35.  
  36.      'iv.def'        ... Modul Definition File 
  37.      'iv.rc'         ... Resource File
  38.      'defaults.iv'   ... Defaults
  39.      'fonts.dir'     ... Font Database
  40.      'fonts.ali'     ... Font Aliases
  41.      'fonts.tfc'     ... Font Typefaces assignment
  42.      'fonts.rsc'     ... Font Resources assignment
  43.      'colors.ali'    ... Color Database
  44.      'cursors.ali'   ... Cursor Aliases
  45.  
  46.      '\lib'               ... Win IV Libraries  
  47.      '\lib\winiv.lib'     ... Standard Library I
  48.      '\lib\winivwin.lib'  ... Standard Library II
  49.      '\lib\graphic.lib'   ... Graphic Library
  50.  
  51.  
  52.  
  53. 2. A Win IV Program
  54.      
  55.      /* Include IV Headers */
  56.      
  57.      int IVMain (int argc, char** argv) {
  58.        /* InterViews Code */
  59.      }
  60.       
  61.    *) The main function must be named IVMain, with parameters
  62.       int    argc
  63.       char** argv.
  64.    *) A Modul Definition File must be included by the linker. 'iv.def' is 
  65.       the standard M.D.F. of Win IV. It can be customized by the user.
  66.    *) The PATH must be set to the IV directory. 
  67.  
  68.  
  69.